.form-horizontal {
  display: flex;
  flex-direction: row;   /* todos en horizontal */
  gap: 15px;             /* espacio entre los elementos */
  align-items: center;   /* alinear verticalmente */
}

.form-horizontal label {
  margin-right: 5px;
  font-weight: bold;
}

.form-horizontal input {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-horizontal button {
  padding: 8px 15px;
  border: none;
  border-radius: 6px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
}

.form-horizontal button:hover {
  background-color: #0056b3;
}
